@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes colorShift {

    0%,
    100% {
        background-color: #0099cc;
    }

    50% {
        background-color: #00b3cc;
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff3399;
    opacity: 0.1;
}

.icon-pulse {
    animation: iconPulse 2s infinite ease-in-out;
}

.badge-color-shift {
    animation: colorShift 3s infinite ease-in-out;
}

.number-container {
    position: relative;
    height: 2rem;
    width: 2.5rem;
    overflow: hidden;
}

.number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: monospace;
    color: #1f2937;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.banner-container {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.banner {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.banner:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}